:root {
    --verde: #e61111;
    --verde-whatsapp: #288401;
    --preto: #000000;
    --font: 'Poppins', sans-serif;
}

svg {
    width: 50px;
    height: 50px;
}

img {
    max-width: 100%;
    height: auto;
}

html, 
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #000000;
}

.container {
    width: 1140px;
    max-width: 90%;
    margin: auto;
}

strong {
    font-weight: bold;
}


/* CTA */
a.cta {
    background: var(--verde-whatsapp);
    padding: 10px 25px;
    color: #fff;
    display: flex;
    align-items: center;
    border-radius: 50px;
    gap: 5px;
    font-weight: 500;
    text-decoration: none;
    justify-content: center;
    transition: all .4s;
}

a.cta svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

a.cta:hover {
    background: var(--verde);
    color: #fff;
}


/* Title Home */
.title__home {
    text-align: center;
    margin-bottom: 40px;
}

.title__home h2 {
    font-size: 48px;
    font-weight: 600;
}

.title__home h3 {
    font-size: 14px;
}

.title__home::after {
    content: '';
    display: block;
    width: 150px;
    height: 5px;
    background: var(--verde);
    margin: auto;
    margin-top: 10px;
    border-radius: 50px;
}


/* Header */
header .container {
    display: flex;
    align-items: center;
    gap: 30px;
}

header .right {
    flex: 1;
}

header .telephones {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: flex-end;
    width: 100%;
    padding: 20px 0;
}

header .telephones .time {
    display: table;
    padding-right: 45px;
    position: relative;
    font-size: 12px;
    text-align: right;
}

header .telephones .time strong {
    display: block;
    font-size: 18px;
    font-weight: bold;
}

header .telephones .time svg {
    width: 35px;
    height: 35px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.link__telephone {
    border: 1px var(--verde) solid;
    border-radius: 4px;
    position: relative;
    display: table;
    font-size: 11px;
    color: #000000;
    text-decoration: none;
    padding: 10px;
    padding-left: 60px;
}

.link__telephone svg {
    width: 35px;
    height: 35px;
    display: block;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    fill: var(--verde);
}

.link__telephone strong {
    font-weight: bold;
    display: block;
    font-size: 18px;
    line-height: 1.2;
    transition: all .5s;
}

.link__telephone:hover strong {
    color: var(--verde);
}


header .menu {
    border-top: 1px #dedede solid;
    min-width: 100%;
}

header .menu ul {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
}

header .menu a:not(.cta) {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 50px;
    padding: 0 5px;
}

header .menu a {
    text-align: center;
}

header .menu a:hover:not(.cta) {
    color: var(--verde);
}



/* Intro */
section.intro {
    background: url(../img/bg-intro-mobile.jpg) center center no-repeat;
    background-size: cover;
    display: table;
    width: 100%;
}

section.intro .content {
    margin: 140px 0;
    padding: 40px 30px;
    color: #fff;
    border: 5px #fff solid;
    border-radius: 10px;
    display: flex;
    width: fit-content;
    position: relative;
}

section.intro .content a {
    position: absolute;
    bottom: -28px;
    left:50%;
    transform: translateX(-50%);
    border: 5px #000 solid;
}

section.intro .content h1 {
    font-size: 60px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
}

section.intro .content h1 strong {
    display: block;
    font-size: 30px;
    line-height: 1.5;
}


/* Soluções */
section.solucoes {
    padding: 100px 0;
}

section.solucoes ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap:35px 15px;
}

section.solucoes li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    text-align: center;
    padding:20px 10px;
    border-radius: 5px;
    box-shadow: 0px -40px 40px #0000000d;
}

section.solucoes li img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: block;
    object-fit: cover;
}

section.solucoes li h4 {
    font-size: 18px;
    font-weight: 600;
    padding: 0 15px;
    line-height: 1.2;
}

section.solucoes li p {
    color: #666;
    line-height: 1.5;
    font-size: 12px;
    padding: 0 10px;
}

section.solucoes li .cta {
    background: #fff;
    border: 1px #dedede solid;
    color: #000;
}

section.solucoes li .cta svg {
    fill: var(--verde-whatsapp);
}

section.solucoes li .cta:hover {
    background: var(--verde-whatsapp);
    color: #fff;
    border-color: var(--verde-whatsapp);
}

section.solucoes li .cta:hover svg {
    fill: #fff;
}



/* Sobre */
section.sobre {
    background: url(img/bg-intro-mobile.jpg) center center no-repeat;
    background-size: cover;
    margin-top: 100px;
}

section.sobre .container {
    display: flex;
    align-items: center;
}

section.sobre .box {
    background: #fff;
    border-radius: 8px;
    padding: 60px;
    box-sizing: border-box;
    text-align: center;
    box-shadow: 0 0 50px #0000000e;
    margin-top: -100px;
}

section.sobre .persona {
    margin-left: -50px;
    margin-top: -100px;
    margin-right: -50px;
}

section.sobre .cta {
    width: fit-content;
    margin: auto;
}

section.sobre h4 {
    font-size: 20px;
    margin-bottom: 30px;
}

section.sobre p {
    line-height: 2;
    margin-bottom: 40px;
}


/* Actions */
section.actions {
    display: table;
    width: 100%;
    background: #000;
    padding: 40px 0;
}

section.actions .container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    color: #fff;
}

section.actions h2 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
}

section.actions h2 span {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--verde-whatsapp);
}

section.actions h2 span svg {
    width: 35px;
    fill: #fff;
}

section.actions .telephones {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

section.actions .telephones a {
    color: #fff;
}

section.actions .telephones .time {
    display: table;
    padding-right: 45px;
    position: relative;
    font-size: 12px;
    text-align: right;
}

section.actions .telephones .time strong {
    display: block;
    font-size: 18px;
    font-weight: bold;
}

section.actions .telephones .time svg {
    width: 35px;
    height: 35px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    fill: #fff;
}



/* Perguntas */
section.questions {
    padding: 130px 0;
}

section.questions .title__home {
    margin-bottom: 70px;
}

section.questions details {
    appearance: none;
    -webkit-appearance: none;
    font-family: var(--font);
    margin-bottom: 15px;
}

section.questions details summary::marker {
    content: '';
    display: none;
}

section.questions details summary {
    border: 1px #dedede solid;
    padding: 20px;
    padding-right: 50px;
    font-size: 16px;
    cursor: pointer;
    position: relative;
}

section.questions details summary::after,
section.questions details summary::before {
    content: '';
    width: 3px;
    height: 20px;
    background: var(--verde);
    display: block;
    border-radius: 7px;
    position: absolute;
    right: 25px;
    top: 17px;
}

section.questions details summary::after {
    transform: rotate(90deg);
}

section.questions details[open] summary::before {
    display: none;
}

section.questions details div {
    border: 1px #dedede solid;
    border-top: 0;
    padding: 20px;
    font-size: 14px;
    line-height: 2;
    background: #fff;
    margin-top: -1px;
}

section.questions details div p {
    margin-bottom: 20px;
}

section.questions .hassQuestions {
    display: flex;
    margin: auto;
    width: fit-content;
    margin-top: 70px;
    flex-direction: column;
    gap: 20px;
    font-size: 18px;
    text-align: center;
}


/* Footer */
footer .principal {
    padding: 70px 0;
    padding-top: 100px;
    background: #000000;
    color: #fff;
}

footer .principal h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

footer .principal h3 svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

footer .principal .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

footer .menu {
    min-width: 410px;
}

footer .sobre {
    margin-top: -30px;
}

footer .sobre img {
    display: block;
    margin-bottom: 30px;
}

footer .sobre p {
    line-height: 1.5;
    margin-bottom: 30px;
}

footer .sobre a {
    width: fit-content;
}

footer .menu a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

footer .menu a:before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--verde);
    border-radius: 50%;
    display: block;
}

footer .contato a {
    margin-bottom: 10px;
    color: #fff;
}

footer .copy .container {
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .copy p  {
    font-size: 12px;
    color: #666;
}

footer .copy img {
    filter: grayscale(1);
}


/* Telefone Fixo */
.telefone__fixo {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    background: #fff;
    padding: 10px 0;
    box-shadow: 0 0 30px #00000013;
}

.telefone__fixo .container {
    display: flex;
    gap: 15px;
    justify-content: center;
}/* Estilos para o botão flutuante de e-mail */
.email-float {
    position: fixed; /* Faz o botão ficar fixo na tela, independente do scroll */
    top: 50%; /* Centraliza verticalmente na tela */
    right: 0; /* Encosta o botão no lado direito da tela */
    transform: translateY(-50%); /* Ajusta para realmente centralizar no meio */
    background-color: #0056d2; /* Cor de fundo azul */
    color: white; /* Cor do texto */
    padding: 10px; /* Espaçamento interno */
    border-radius: 8px 0 0 8px; /* Arredonda os cantos esquerdos */
    display: flex; /* Organiza texto e imagem em coluna */
    align-items: center; /* Centraliza itens */
    text-decoration: none; /* Remove sublinhado do link */
    font-family: Arial, sans-serif; /* Fonte padrão */
    font-size: 14px; /* Tamanho do texto */
    box-shadow: 0 0 5px rgba(0,0,0,0.3); /* Sombra para destacar */
    z-index: 1000; /* Garante que fique por cima de outros elementos */
    writing-mode: vertical-rl; /* Texto na vertical de cima para baixo */
    text-orientation: mixed; /* Mantém as letras na orientação normal */
}

/* Estilo da imagem (ícone) dentro do botão */
.email-float img {
    width: 24px; /* Largura da imagem */
    height: 24px; /* Altura da imagem */
    margin-top: 8px; /* Espaço acima da imagem para separar do texto */
}
